Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
The tildify npm package is used to convert absolute paths into a tilde path, which replaces the user's home directory with a tilde (~). This can be useful for displaying paths in a more readable and user-friendly format, especially in command-line applications or logging.
Convert absolute path to tilde path
This feature takes an absolute path and converts it to a tilde path by replacing the user's home directory with a tilde (~).
const tildify = require('tildify');
const tildePath = tildify('/Users/username/project');
console.log(tildePath); // Outputs: '~/project'
The untildify package performs the opposite action of tildify. It converts a tilde path back into an absolute path by expanding the tilde (~) to the user's home directory.
The user-home package is used to get the current user's home directory. While it does not convert paths, it provides the base functionality that packages like tildify rely on to replace the home directory with a tilde.
Similar to user-home, os-homedir is used to get the user's home directory. It's a low-level utility that can be used in conjunction with other packages to manipulate paths.
Convert an absolute path to a tilde path:
/Users/sindresorhus/dev
→~/dev
$ npm install tildify
const tildify = require('tildify');
tildify('/Users/sindresorhus/dev');
//=> '~/dev'
See untildify for the inverse.
MIT © Sindre Sorhus
FAQs
Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`
The npm package tildify receives a total of 1,762,861 weekly downloads. As such, tildify popularity was classified as popular.
We found that tildify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.